home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWrap / Source / CmdMove.m < prev    next >
Text File  |  1991-09-16  |  259b  |  21 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "CmdMove.h"
  5.  
  6. @implementation CmdMove
  7. - initCmd:(int)x :(int)y
  8. {
  9.   [super init];
  10.   number1=x; number2=y;
  11.   command="move";
  12.   return self;
  13. }
  14.  
  15. - doCmd
  16. {
  17.   [theBitmap cmdMove:number1 :number2];
  18.   return self;
  19. }
  20. @end
  21.